home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / snip9611.zip / STRFTIME.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  379b  |  18 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. /*
  4. **  STRFTIME.H - For older compilers which lack strftime()
  5. */
  6.  
  7. #ifndef STRFTIME__H
  8. #define STRFTIME__H
  9.  
  10. #include <stddef.h>     /* for size_t */
  11. #include <time.h>       /* for struct tm */
  12.  
  13. size_t strftime(char *s, size_t maxs, const char *f, const struct tm *t);
  14.  
  15. extern char * tzname_[2];
  16.  
  17. #endif /* STRFTIME__H */
  18.